home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / PROGRAMR / GSRC208A.ZIP / BASIC.H < prev    next >
C/C++ Source or Header  |  1992-12-05  |  1KB  |  35 lines

  1. /*
  2.     GEPASI - a simulator of metabolic pathways and other dynamical systems
  3.     Copyright (C) 1989, 1992  Pedro Mendes
  4. */
  5.  
  6. /*************************************/
  7. /*                                   */
  8. /*        MS-WINDOWS front end       */
  9. /*                                   */
  10. /*     general windows functions     */
  11. /*                                   */
  12. /*           QuickC/WIN 1.0          */
  13. /*                                   */
  14. /*   (include here compilers that    */
  15. /*   compiled GWSIM successfully)    */
  16. /*                                   */
  17. /*************************************/
  18.  
  19.  
  20. extern int        cxChar, cyChar;        /* text scale                           */
  21. extern WORD        wAdjX, wAdjY;        /* constants to adjust x-y units        */
  22.  
  23. void InitTxtMetrics( HWND hWnd );
  24. int TxtX( int x );
  25. int TxtY( int y );
  26. void InitScrScale( void );
  27. WORD ScrX( int x );
  28. WORD ScrY( int y );
  29. short AskAboutSave( HWND hWnd, HANDLE hInst, char *fn, WORD style );
  30. LPSTR FAR PASCAL GetOFileName( HWND hWnd, LPSTR achFileName, int sizebuff, LPSTR title, LPSTR filter );
  31. LPSTR FAR PASCAL GetSFileName( HWND hWnd, LPSTR achFileName, int sizebuff, LPSTR title, LPSTR filter );
  32. void ErrorHandler( HANDLE hInst, int nRc );
  33.  
  34.  
  35.